/* IT services.css - COMPLETE PROFESSIONAL STYLESHEET v2.0 */
/* Full standalone CSS for IT Services page */

/* ========================================
   RESET & BASE
======================================= */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ========================================
   HERO SECTION
======================================= */
#hero {
    background: transparent !important;
    color: #1a1a1a;
    text-align: center;
    padding: 5rem 0;
}

#hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

#hero p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

/* ========================================
   CONTAINER & SECTIONS
======================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

/* ========================================
   SERVICES GRID - TESTIMONIAL STYLE
======================================= */
#services .services-grid,
#testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-top: 0;
}

.service-card,
.testimonial-item {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 6px solid #007bff;
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card:hover,
.testimonial-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* ========================================
   GAME DOWNLOADS
======================================= */
.game-portfolio-small {
    margin: 1.5rem 0;
}

.game-item-small {
    display: inline-block;
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
    color: #4f46e5;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e0e7ff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
}

.game-item-small:hover {
    background: linear-gradient(135deg, #e0e7ff, #d4dfff);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2);
    color: #3730a3;
}

/* ========================================
   TESTIMONIALS
======================================= */
#testimonials {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.testimonial-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    position: relative;
    margin-bottom: 0;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4.5rem;
    color: #007bff;
    position: absolute;
    left: -15px;
    top: -20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 1rem;
}

/* ========================================
   CTA BUTTON
======================================= */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255,107,107,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff5252, #ff6b6b);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255,107,107,0.6);
    color: white;
}

/* ========================================
   OTHER SECTIONS
======================================= */
#portfolio {
    background: #f8f9fa;
    text-align: center;
}

#portfolio h2 {
    color: #1a1a1a;
}

#portfolio p {
    color: #666;
    font-size: 1.2rem;
    font-style: italic;
}

/* ========================================
   ANIMATIONS
======================================= */
.service-card,
.testimonial-item {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1),
.testimonial-item:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2),
.testimonial-item:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3),
.testimonial-item:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4),
.testimonial-item:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================= */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    #hero h1 { font-size: 3rem; }
    